aboutsummaryrefslogtreecommitdiff
path: root/src/app/manga/[title]/[id]/[read]/read.module.css
diff options
context:
space:
mode:
authorreal-zephex <[email protected]>2024-03-25 11:33:09 +0530
committerreal-zephex <[email protected]>2024-03-25 11:33:09 +0530
commit9202a2b6790e57dc35d0563d014e89d981a65e37 (patch)
treef2258b96400d6df9753c2c52531ba7f8897b9fa3 /src/app/manga/[title]/[id]/[read]/read.module.css
parentfix: requests are revalidated after 30 mins. this prevents stale data from be... (diff)
downloaddramalama-9202a2b6790e57dc35d0563d014e89d981a65e37.tar.xz
dramalama-9202a2b6790e57dc35d0563d014e89d981a65e37.zip
feature added: mangas are now available
Diffstat (limited to 'src/app/manga/[title]/[id]/[read]/read.module.css')
-rw-r--r--src/app/manga/[title]/[id]/[read]/read.module.css43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/app/manga/[title]/[id]/[read]/read.module.css b/src/app/manga/[title]/[id]/[read]/read.module.css
new file mode 100644
index 0000000..3a8c99f
--- /dev/null
+++ b/src/app/manga/[title]/[id]/[read]/read.module.css
@@ -0,0 +1,43 @@
+.ImageContainer img {
+ width: auto;
+ height: auto;
+ border-radius: 5px;
+ margin-top: 10px;
+
+}
+
+.Image {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ background-color: #1b1b1b;
+ border-radius: 10px;
+ width: auto;
+ margin-top: 10px;
+}
+
+.ImageContainer p {
+ text-align: center;
+ color: white;
+ font-family: "Kanit";
+ font-size: 16px;
+ margin: 5px;
+}
+
+.NotFound {
+ text-align: center;
+ color: white;
+ font-family: "Atkinson Hyperlegible";
+ font-size: 20px;
+}
+
+@media screen and (max-width: 768px) {
+ .ImageContainer img {
+ width: 90%;
+ align-items: center;
+ }
+
+ .Image {
+ width: 100%;
+ }
+} \ No newline at end of file